for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
const {app} = require('./app');
const port = process.env.PORT || 3000;
// Listen to the port
app.listen(port, () => {
console.log('server listening at port : ' + port);
console.log
});